Declare Function GetWindowsDirectory Lib "Kernel" (ByVal lpBuffer As String, ByVal nSize As Integer) As Integer
'' Functions for List Box Horizontal Scrolling
'
Declare Function SendMessage Lib "User" (ByVal hWnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As Long) As Long
' Get the handle for a Window
Declare Function GetFocus Lib "User" () As Integer
' Write a Private Profile Entry
Declare Function WritePrivateProfileString Lib "Kernel" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lplFileName As String) As Integer
' Read a Private Profile Entry
Declare Function GetPrivateProfileString Lib "Kernel" (ByVal lpAppName As String, ByVal lpKeyName As Any, ByVal lpString As String, ByVal lpReturnedString As String, ByVal nSize As Integer, ByVal lplFileName As String) As Integer
Sub GetPProfileString (sSection As String, sEntry As String, sDefault As String, sFilename As String, sReturnBuffer As String, iReturnBuffer As Integer)